home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / komunikace / k-ninja / setup-kninja_v2.exe / {app} / res / forms.css < prev    next >
Cascading Style Sheet File  |  2005-11-18  |  13KB  |  526 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  25.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. /** 
  38.   Styles for old GFX form widgets
  39.  **/ 
  40.  
  41.  
  42. @namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
  43. @namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  44.  
  45. *|*::-moz-fieldset-content {
  46.   display: block;
  47.   height: 100%;   /* Need this so percentage heights of kids work right */
  48. }
  49.  
  50. /* miscellaneous form elements */
  51.  
  52. legend {
  53.   padding-left: 2px;
  54.   padding-right: 2px;
  55.   border: none;
  56.   position: static ! important;
  57.   float: none ! important;
  58. }
  59.  
  60. fieldset {
  61.   display: block;
  62.   margin-left: 2px;
  63.   margin-right: 2px;
  64.   padding: 0.35em 0.625em 0.75em;
  65.   border: 2px groove ThreeDFace;
  66. }
  67.  
  68. label {
  69.   cursor: default;
  70. }
  71.  
  72. /* default inputs, text inputs, and selects */
  73.  
  74. /* Note: Values in nsNativeTheme IsWidgetStyled function 
  75.    need to match textfield background/border values here */
  76.  
  77. input {
  78.   -moz-appearance: textfield;
  79.   /* The sum of border-top, border-bottom, padding-top, padding-bottom
  80.      must be the same here, for buttons, and for <select> (including its
  81.      internal padding magic) */
  82.   padding: 1px 0 1px 0;
  83.   border: 2px inset ThreeDFace;
  84.   background-color: -moz-Field;
  85.   color: -moz-FieldText;
  86.   font: -moz-field;
  87.   line-height: normal !important;
  88.   text-align: start;
  89.   text-transform: none;
  90.   word-spacing: normal;
  91.   letter-spacing: normal;
  92.   cursor: text;
  93.   -moz-binding: url("chrome://global/content/platformHTMLBindings.xml#inputFields");
  94.   text-indent: 0;
  95.   -moz-user-select: text;
  96. }
  97.  
  98. input > .anonymous-div {
  99.   white-space : nowrap;
  100. }
  101.  
  102. textarea {
  103.   margin: 1px 0 1px 0;
  104.   border: 2px inset ThreeDFace;
  105.   background-color: -moz-Field;
  106.   color: -moz-FieldText;
  107.   font: medium -moz-fixed;
  108.   text-align: start;
  109.   text-transform: none;
  110.   word-spacing: normal;
  111.   letter-spacing: normal;
  112.   vertical-align: text-bottom;
  113.   cursor: text;
  114.   -moz-binding: url("chrome://global/content/platformHTMLBindings.xml#textAreas");
  115.   -moz-appearance: textfield;
  116.   text-indent: 0;
  117.   -moz-user-select: text;
  118. }
  119.  
  120. textarea > scrollbar {
  121.   cursor: default;
  122. }
  123.  
  124. textarea > .anonymous-div,
  125. input > .anonymous-div {
  126.   overflow: auto;
  127.   border: 0px !important;
  128.   padding: 0px;
  129.   margin: 0px;
  130.   /* XXXldb I'm not sure if we really want the 'text-decoration: inherit',
  131.      but it's needed to make 'text-decoration' "work" on text inputs. */
  132.   text-decoration: inherit;
  133. }
  134.  
  135. select {
  136.   margin: 0;
  137.   border-color: ThreeDFace;
  138.   background-color: -moz-Field;
  139.   color: -moz-FieldText;
  140.   font: -moz-list;
  141.   line-height: normal !important;
  142.   white-space: nowrap !important;
  143.   text-align: start; 
  144.   cursor: default;
  145.   -moz-box-sizing: border-box;
  146.   -moz-user-select: none;
  147.   -moz-appearance: menulist;
  148.   border-width: 2px;
  149.   border-style: inset;
  150.   text-indent: 0;
  151. }
  152.  
  153. /* Need the "select[size][multiple]" selector to override the settings on
  154.    'select[size="1"]', eg if one has <select size="1" multiple> */
  155.    
  156. select[size],
  157. select[multiple],
  158. select[size][multiple] {
  159.   /* Different alignment and padding for listbox vs combobox */
  160.   vertical-align: text-bottom;
  161.   padding: 1px 0 1px 0;
  162.   -moz-appearance: listbox;
  163. }
  164.  
  165. select[size="0"],
  166. select[size="1"] {
  167.   /* Except this is not a listbox */
  168.   vertical-align: baseline;
  169.   padding: 0;
  170.   -moz-appearance: menulist;
  171. }
  172.  
  173. select > input[type="button"] {
  174.   width: 12px;
  175.   height: 12px;
  176.   white-space: nowrap;
  177.   position: static !important;
  178.   background-image: url("arrow.gif") !important;
  179.   background-repeat: no-repeat !important;
  180.   background-position: center !important;
  181.   -moz-appearance: menulist-button;
  182. }
  183.  
  184. select > input[type="button"]:active {
  185.   background-image: url("arrowd.gif") !important;
  186. }
  187.  
  188. select::-moz-dummy-option { 
  189.   visibility: hidden; 
  190.   content: "XX"; /* demo 8, edge case test 1 */
  191. }
  192.  
  193. *|*::-moz-display-comboboxcontrol-frame {
  194.   overflow: -moz-hidden-unscrollable;
  195.   /* This top/bottom padding plus the combobox top/bottom border need to
  196.      add up to the top/bottom borderpadding of text inputs and buttons */ 
  197.   padding: 1px 0 1px 4px;
  198.   background-color: inherit;
  199.   color: inherit;
  200.   white-space: nowrap;
  201.   text-align: inherit;
  202.   -moz-user-select: none;
  203. }
  204.  
  205. option {
  206.   display: block;
  207.   min-height: 1em;
  208.   line-height: normal !important;
  209.   -moz-user-select: none;
  210.   text-indent: 0;
  211. }
  212.  
  213. select > option {
  214.   padding: 0 5px 0 3px;
  215. }
  216.  
  217. option:checked {
  218.   background-color: Highlight ! important;
  219.   color: HighlightText ! important;
  220. }
  221.  
  222. optgroup {
  223.   display: block;
  224.   font: -moz-list;
  225.   line-height: normal !important;
  226.   font-style: italic;
  227.   font-weight: bold;
  228.   font-size: inherit;
  229.   -moz-user-select: none;
  230.   text-indent: 0;
  231. }
  232.  
  233. optgroup > option {
  234.   padding-left: 20px;
  235.   font-style: normal;
  236.   font-weight: normal;
  237. }
  238.  
  239. optgroup:before {
  240.   display: block;
  241.   content: attr(label);
  242. }
  243.  
  244. *|*::-moz-dropdown-list {
  245.   z-index: 2147483647;
  246.   background-color: inherit;
  247.   -moz-user-select: none;
  248.   position: static !important;
  249.   float: none !important;
  250.  
  251.   border: 1px outset black !important;
  252.  
  253. input[disabled],
  254. textarea[disabled],
  255. option[disabled],
  256. optgroup[disabled],
  257. select[disabled] {
  258.   -moz-user-input: disabled;
  259.   -moz-user-focus: ignore;
  260.   color: GrayText;
  261.   background-color: ThreeDFace;
  262.   cursor: inherit;
  263. }
  264.  
  265. option[disabled],
  266. optgroup[disabled] {
  267.   background-color: transparent;
  268. }
  269.  
  270. /* hidden inputs */
  271. input[type="hidden"] {
  272.   -moz-appearance: none;
  273.   display: none;
  274.   padding: 0;
  275.   border: 0;
  276.   cursor: auto;
  277.   -moz-user-focus: ignore;
  278.   -moz-binding: none;
  279. }
  280.  
  281. /* image buttons */
  282. input[type="image"] {
  283.   -moz-appearance: none;
  284.   padding: 0;
  285.   border: none;
  286.   background-color: transparent;
  287.   font-family: sans-serif;
  288.   font-size: small;
  289.   cursor: pointer;
  290.   -moz-binding: none;
  291.   -moz-appearance: none;
  292. }
  293.  
  294. input[type="image"][disabled] {
  295.   cursor: inherit;
  296. }
  297.  
  298. input[type="image"]:focus {
  299.   outline: 1px dotted invert;
  300. }
  301.  
  302. /* file selector */
  303. input[type="file"] {
  304.   -moz-appearance: none;
  305.   white-space: nowrap;
  306.   cursor: default;
  307.   -moz-binding: none;
  308.  
  309.   padding: 0 !important;
  310.   border-style: none !important;
  311. }
  312.  
  313. input[type="file"] > input[type="text"] {
  314.   border-color: inherit;
  315.   background-color: inherit;
  316.   color: inherit;
  317.   font-size: inherit;
  318.   height: inherit;
  319.   letter-spacing: inherit;
  320. }
  321.  
  322. /* button part of file selector */
  323. input[type="file"] > input[type="button"] {
  324.   height: inherit;
  325.   font-size: inherit;
  326.   letter-spacing: inherit;
  327. }
  328.  
  329. /* radio buttons */
  330. input[type="radio"] {
  331.   -moz-appearance: radio;
  332.   width: 13px;
  333.   height: 13px;
  334.   margin: 3px 3px 0px 5px;
  335.   padding: 0 !important;
  336.   cursor: default;
  337.   -moz-binding: none;
  338.  
  339.   -moz-border-radius: 100% !important;
  340. }
  341.  
  342. /* check boxes */
  343. input[type="checkbox"] {
  344.   -moz-appearance: checkbox;
  345.   width: 13px;
  346.   height: 13px;
  347.   margin: 3px 3px 3px 4px;
  348.   padding: 0 !important;
  349.   vertical-align: text-bottom;
  350.   cursor: default;
  351.   -moz-binding: none;
  352.  
  353.   -moz-border-radius: 0 !important;
  354. }
  355.  
  356. /* common features of radio buttons and check boxes */
  357.  
  358. input[type="radio"],
  359. input[type="checkbox"] {
  360.   /* same colors as |input| rule, but |!important| this time. */
  361.   -moz-box-sizing: border-box;
  362.   background-color: -moz-Field ! important;
  363.   color: -moz-FieldText ! important;
  364.   border: 2px inset ThreeDFace ! important;
  365. }
  366.  
  367. input[type="radio"][disabled],
  368. input[type="radio"][disabled]:active,
  369. input[type="radio"][disabled]:hover,
  370. input[type="radio"][disabled]:hover:active,
  371. input[type="checkbox"][disabled],
  372. input[type="checkbox"][disabled]:active,
  373. input[type="checkbox"][disabled]:hover,
  374. input[type="checkbox"][disabled]:hover:active {
  375.   padding: 1px;
  376.   border: 1px inset ThreeDShadow ! important;
  377.   /* same as above, but !important */
  378.   color: GrayText ! important;
  379.   background-color: ThreeDFace ! important;
  380.   cursor: inherit; 
  381. }
  382.  
  383. input[type="checkbox"]:focus,
  384. input[type="radio"]:focus {
  385.   border-style: groove !important;
  386. }
  387.  
  388. input[type="checkbox"]:hover:active,
  389. input[type="radio"]:hover:active {
  390.   background-color: ThreeDFace ! important;
  391.   border-style: inset !important;
  392. }
  393.  
  394. *|*::-moz-radio {
  395.   width: 4px;
  396.   height: 4px;
  397.   background-color: -moz-FieldText ! important;
  398.   -moz-border-radius: 3px;
  399. }
  400.  
  401. /* buttons */
  402.  
  403. /* Note: Values in nsNativeTheme IsWidgetStyled function 
  404.    need to match button background/border values here */
  405.  
  406. button, 
  407. input[type="reset"],
  408. input[type="button"],
  409. input[type="submit"] { 
  410.   -moz-appearance: button;
  411.   /* The sum of border-top, border-bottom, padding-top, padding-bottom
  412.      must be the same here, for text inputs, and for <select>.  For
  413.      buttons, make sure to include the -moz-focus-inner border/padding. */
  414.   padding: 0px 6px 0px 6px;
  415.   border: 2px outset ButtonFace;
  416.   background-color: ButtonFace;
  417.   color: ButtonText; 
  418.   font: -moz-button;
  419.   line-height: normal !important;
  420.   white-space: pre;
  421.   cursor: default;
  422.   -moz-box-sizing: border-box;
  423.   -moz-user-select: none;
  424.   -moz-binding: none;
  425.   text-align: center;
  426. }
  427.  
  428. button {
  429.   /* Buttons should lay out like "normal" html, mostly */
  430.   white-space: normal;  
  431.   text-indent: 0;
  432. }
  433.  
  434. *|*::-moz-button-content {
  435.   display: block;
  436. }
  437.  
  438. button:active:hover,
  439. input[type="reset"]:active:hover,
  440. input[type="button"]:active:hover,
  441. input[type="submit"]:active:hover {
  442.   padding: 0px 5px 0px 7px;
  443.   border-style: inset;
  444. }
  445.  
  446. button::-moz-focus-inner,
  447. input[type="reset"]::-moz-focus-inner,
  448. input[type="button"]::-moz-focus-inner,
  449. input[type="submit"]::-moz-focus-inner,
  450. input[type="file"] > input[type="button"]::-moz-focus-inner {
  451.   padding: 0px 2px 0px 2px;
  452.   border: 1px dotted transparent;
  453. }
  454.  
  455. button:focus::-moz-focus-inner,
  456. input[type="reset"]:focus::-moz-focus-inner,
  457. input[type="button"]:focus::-moz-focus-inner,
  458. input[type="submit"]:focus::-moz-focus-inner,
  459. input[type="file"] > input[type="button"]:focus::-moz-focus-inner {
  460.   border-color: ButtonText;
  461. }
  462.  
  463. button[disabled]:active, button[disabled],
  464. input[type="reset"][disabled]:active,
  465. input[type="reset"][disabled],
  466. input[type="button"][disabled]:active,
  467. input[type="button"][disabled],
  468. select[disabled] > input[type="button"],
  469. select[disabled] > input[type="button"]:active,
  470. input[type="submit"][disabled]:active,
  471. input[type="submit"][disabled] {
  472.   /* The sum of border-top, border-bottom, padding-top, padding-bottom
  473.      must be the same here and for text inputs */
  474.   padding: 1px 7px 1px 7px;
  475.   border: 1px outset ButtonShadow;
  476.   color: GrayText;
  477.   cursor: inherit; 
  478. }
  479.  
  480.  /*
  481.   * Make form controls inherit 'unicode-bidi' transparently as required by
  482.   *  their various anonymous descendants and pseudo-elements:
  483.   *
  484.   * <textarea> and <input type="text">:
  485.   *  inherit into the XULScroll frame with class 'anonymous-div' which is a
  486.   *  child of the text control.
  487.   *
  488.   * Buttons (either <button>, <input type="submit">, <input type="button">
  489.   *          or <input type="reset">)
  490.   *  inherit into the ':-moz-button-content' pseudo-element.
  491.   *
  492.   * <select>:
  493.   *  inherit into the ':-moz-display-comboboxcontrol-frame' pseudo-element and
  494.   *  the <optgroup>'s ':before' pseudo-element, which is where the label of
  495.   *  the <optgroup> gets displayed. The <option>s don't use anonymous boxes,
  496.   *  so they need no special rules.
  497.   */
  498. textarea > .anonymous-div,
  499. input > .anonymous-div,
  500. *|*::-moz-button-content,
  501. *|*::-moz-display-comboboxcontrol-frame,
  502. optgroup:before {
  503.   unicode-bidi: inherit;
  504. }
  505.  
  506.  /*
  507.   * Force the text control child of file input controls to have left-to-right
  508.   * directionality. Otherwise filenames containing right-to-left characters
  509.   * will be reordered with chaotic results.
  510.   */
  511. input[type="file"] > input[type="text"] {
  512.   direction: ltr !important;
  513.   text-align: inherit;
  514. }
  515.  
  516. @media print {
  517.   input, textarea, select, button {
  518.     -moz-user-input: none !important;
  519.   }
  520.  
  521.   input[type="file"] { height: 2em; }
  522. }
  523.  
  524.  
  525.